home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 5
/
Amiga Tools 5.iso
/
tools
/
dfÜ
/
crashmail
/
rexx
/
toss.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-05-13
|
341b
|
16 lines
/*
Toss.rexx
If CrashMail is running, it is told to start tossing. Otherwise CrashMail
is executed with the TOSS keyword. Please change the paths to suit your
setup.
*/
if ~show('p','CRASHMAIL') then do
address command 'MAIL:CrashMail Toss >"CON:0/50/640/100/CrashMail Toss..."'
end
else do
address 'CRASHMAIL' toss
end